ComponentOne Bitmap for WPF
C1.WPF.DX.4.5.2 Assembly / C1.Util.DX.DirectWrite Namespace / FontFace Class / GetGdiCompatibleGlyphMetrics Method / GetGdiCompatibleGlyphMetrics(Single,Single,Nullable<Matrix3x2>,Boolean,Int16[],Boolean) Method
The ogical size of the font in DIP units.
The number of physical pixels per DIP.
An optional transform applied to the glyphs and their positions. This transform is applied after the scaling specified by the font size and pixelsPerDip.
When set to FALSE, the metrics are the same as the metrics of GDI aliased text. When set to TRUE, the metrics are the same as the metrics of text measured by GDI using a font created with CLEARTYPE_NATURAL_QUALITY.
An array of glyph indices for which to compute the metrics.
A BOOL value that indicates whether the font is being used in a sideways run. This can affect the glyph metrics if the font has oblique simulation because sideways oblique simulation differs from non-sideways oblique simulation.

In This Topic
    GetGdiCompatibleGlyphMetrics(Single,Single,Nullable<Matrix3x2>,Boolean,Int16[],Boolean) Method
    In This Topic
    Obtains glyph metrics in font design units with the return values compatible with what GDI would produce.
    Syntax
    'Declaration
     
    Public Overloads Function GetGdiCompatibleGlyphMetrics( _
       ByVal fontSize As Single, _
       ByVal pixelsPerDip As Single, _
       ByVal transform As Nullable(Of Matrix3x2), _
       ByVal useGdiNatural As Boolean, _
       ByVal glyphIndices() As Short, _
       ByVal isSideways As Boolean _
    ) As GlyphMetrics()
    public GlyphMetrics[] GetGdiCompatibleGlyphMetrics( 
       float fontSize,
       float pixelsPerDip,
       Nullable<Matrix3x2> transform,
       bool useGdiNatural,
       short[] glyphIndices,
       bool isSideways
    )

    Parameters

    fontSize
    The ogical size of the font in DIP units.
    pixelsPerDip
    The number of physical pixels per DIP.
    transform
    An optional transform applied to the glyphs and their positions. This transform is applied after the scaling specified by the font size and pixelsPerDip.
    useGdiNatural
    When set to FALSE, the metrics are the same as the metrics of GDI aliased text. When set to TRUE, the metrics are the same as the metrics of text measured by GDI using a font created with CLEARTYPE_NATURAL_QUALITY.
    glyphIndices
    An array of glyph indices for which to compute the metrics.
    isSideways
    A BOOL value that indicates whether the font is being used in a sideways run. This can affect the glyph metrics if the font has oblique simulation because sideways oblique simulation differs from non-sideways oblique simulation.

    Return Value

    An array of C1.Win.DX.DirectWrite.GlyphMetrics structures filled by this function. The metrics are in font design units.
    See Also